home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1998 January / PC Answers Issue 49 Cover CD January 1998.iso / Apps / Director / DATA.Z / Lists Lingo.dir / Scripts_59_getLast(aLinearList).ls < prev    next >
Encoding:
Text File  |  1997-05-10  |  366 b   |  13 lines

  1. on mouseDown
  2.   global gDefaultLinearList
  3.   doButton()
  4.   if the result = 1 then
  5.     set vLastValue to getLast(gDefaultLinearList)
  6.     if stringp(vLastValue) then
  7.       set the text of member "Checking Display Field 3" to QUOTE & string(vLastValue) & QUOTE
  8.     else
  9.       set the text of member "Checking Display Field 3" to string(vLastValue)
  10.     end if
  11.   end if
  12. end
  13.